home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
csr20a.arc
/
COLOR.H
< prev
next >
Wrap
Text File
|
1986-09-20
|
1KB
|
48 lines
/*
** C O L O R . H
**
** Color definitions file for the C Spot Run C Add-On Library.
**
** Copyright 1986 Bob Pritchett.
**
** Created: / /85 Last Updated: 09/20/86
**
*/
#ifndef CSRCOLOR /* Avoid Double Inclusion */
#define BLK_F 0 /* Black */
#define BLU_F 1 /* Blue */
#define GRN_F 2 /* Green */
#define CYN_F 3 /* Cyan */
#define RED_F 4 /* Red */
#define MAG_F 5 /* Magenta */
#define BRN_F 6 /* Brown */
#define LGRY_F 7 /* Light Gray */
#define GRY_F 8 /* Gray */
#define LBLU_F 9 /* Light Blue */
#define LGRN_F 10 /* Light Green */
#define LCYN_F 11 /* Light Cyan */
#define LRED_F 12 /* Light Red */
#define LMAG_F 13 /* Light Magenta */
#define YEL_F 14 /* Yellow */
#define WHT_F 15 /* White */
#define BLK_B 0 /* Black */
#define BLU_B 16 /* Blue */
#define GRN_B 32 /* Green */
#define CYN_B 48 /* Cyan */
#define RED_B 64 /* Red */
#define MAG_B 80 /* Magenta */
#define BRN_B 96 /* Brown */
#define WHT_B 112 /* White */
#define BLINK 128 /* Blink */
#define BOLD 8 /* Bold */
#define UNDERLINE 1 /* Underline (Mono) */
#define REVERSE 112 /* Reverse Video */
#define NORMAL 7 /* Black and White */
#define CSRCOLOR 1
#endif